home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
exec
/
funsizeo.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
358 b
|
21 lines
/*
\funcref{fun\_sizeoflist}{void fun\_sizeoflist ()}
{}
{}
{}
{funsizeo.c}
{
This function determines the size of the last pushed list variable and
sets {\em reg.vu.intval} to this size.
}
*/
#include "icm-exec.h"
void fun_sizeoflist ()
{
reg.type = e_int;
reg.vu.intval = stack [sp].vu.i->ls.list.size;
}